Hello, Thanks for the great tutorials - the ones on NLP, Python and others. They are such a great help to get started on NLP and python.
Can you suggest any known techniques for doing sentiment analysis for each entity in a text piece? I.e, when more than 1 entity is being talked about in the text, I am looking for ways to analyze sentiment specific to each entity.
Thank you.
You must be logged in to post. Please login or register an account.
Nothing that I know of that is super simple. Stanford's coreNLP stuff is pretty powerful with little effort. For example: http://nlp.stanford.edu/sentiment/
That breaks down sentiment overall, and then into trees. They also have other parsers for parts of speech and noun phrases.
You can at least get by very basically just doing noun phrases and then sentiment analysis on each noun phrase, which contains a subject.
-Harrison 8 years ago
You must be logged in to post. Please login or register an account.